.showroom-header {
    background: white;
    padding: 15px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    display: none;
}

.showroom-menu-toggle {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.showroom-menu-toggle:hover {
    background-color: #f8f9fa;
}

.showroom-navbar-brand {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    letter-spacing: 1px;
}

.showroom-navbar-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.showroom-notification-icon,
.showroom-profile-avatar {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.showroom-notification-icon:hover,
.showroom-profile-avatar:hover {
    background-color: #f8f9fa;
}

.showroom-profile-avatar {
    background: #6c757d;
    color: white;
    font-size: 14px;
    font-weight: 500;
}

/* Overlay */
.showroom-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.showroom-overlay.showroom-active {
    opacity: 1;
    visibility: visible;
}

/* Side Menu */
.showroom-side-menu {
    position: fixed;
    top: 0;
    left: -75%;
    width: 75%;
    height: 100dvh;
    background: white;
    z-index: 999;
    transition: left 0.3s ease;
    overflow-y: auto;
    box-shadow: 4px 0 15px rgba(0, 0, 0, 0.1);
}

/* .showroom-menu-item svg path {
    stroke: black;
}

.showroom-side-menu svg path {
    stroke: black;
    stroke-width: 2;
    fill: none;
    transition: stroke 0.2s ease;
} */

.showroom-side-menu.showroom-active {
    left: 0;
}

/* .showroom-menu-item.showroom-active svg path {
    stroke: white;
} */

/* Optional for click behavior */
.showroom-menu-item svg:active path {
    stroke: white;
}

/* Menu Header */
.showroom-menu-header {
    text-align: center;
    padding: 40px 20px 30px;
    border-bottom: 1px solid #f0f0f0;
    background: white;
}

.showroom-menu-title {
    line-height: 80%;
    padding: 0px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.15em;
    color: #000000;
}

.showroom-user-avatar img {
    width: 60px;
    height: 60px;
    background: #6c757d;
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: 500;
}

/* Menu Items */
.showroom-menu-items {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100% - 90px);
}

.showroom-menu-items > div {
    padding-inline: 12px;
}

.showroom-menu-item {
    display: flex;
    align-items: center;
    padding: 16px 25px;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.2s ease;
    border: none;
    background: none;
    width: 95%;
    text-align: left;
    cursor: pointer;
    position: relative;
    margin: 0px 10px;
    border-radius: 10px;
}

.showroom-menu-item:hover {
    background-color: #FFFAF4;
    color: #333;
}

.showroom-menu-item.showroom-active {
    /* background-color: #333; */
    /* color: white; */
    font-weight: 500;
}

.showroom-menu-item.showroom-danger {
    color: #dc3545;
}

.showroom-menu-item.showroom-danger:hover {
    background-color: #fff5f5;
    color: #dc3545;
}

.showroom-menu-icon {
    width: 20px;
    height: 20px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Settings Submenu */
.showroom-settings-submenu {
    background: #f8f9fa;
    border-left: 3px solid #D3D3D3;
    margin-left: 20px;
}

.showroom-settings-submenu .showroom-menu-item {
    padding: 14px 25px;
    font-size: 15px;
}

/* Toggle Switch */
.showroom-toggle-switch {
    margin-left: auto;
    width: 32px;
    height: 16px;
    background: #333;
    border-radius: 12px;
    position: relative;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.showroom-toggle-switch::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    top: 2px;
    right: 2px;
    transition: transform 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.showroom-toggle-switch.showroom-off {
    background: #dee2e6;
}

.showroom-toggle-switch.showroom-off::after {
    transform: translateX(-20px);
}

/* Close button */
.showroom-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #6c757d;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.showroom-close-btn:hover {
    background-color: #f8f9fa;
    color: #333;
}

/* Content area for demo */
.showroom-content {
    padding: 40px 20px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.showroom-content h2 {
    color: #333;
    margin-bottom: 15px;
}

.showroom-content p {
    color: #6c757d;
    line-height: 1.6;
}

/* SVG Icons */
.showroom-bell-icon {
    width: 24px;
    height: 24px;
}

.showroom-logout-icon {
    width: 20px;
    height: 20px;
}

.form-btn-div {
    display: flex;
    justify-content: center;
    padding: 10px;
}

.form-btn {
    height: 40px;
    width: 100%;
    background-color: #000000;
    border-radius: 6px;
    padding: 13px 40px;
    font-weight: 700;
    color: #FFFFFF;
    font-size: 16px; 
    line-height: 27px;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;

}
.nav-mobile-lang-dropdown{
    border: 1px solid #E7E7E7;
}

@media (max-width: 768px) {
    .showroom-side-menu{
        display: block;
    }
    .right-10 {
        right: 0px !important;
    }
}

[lang="ar"] {
    .showroom-menu-icon {
        margin-right: unset !important;
        margin-left: 15px;
    }
}